home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / mextras.000 / mextras.pas < prev    next >
Pascal/Delphi Source File  |  1996-04-08  |  434b  |  22 lines

  1. unit MExtras;
  2.  
  3. interface
  4.  
  5. Uses MDialogs, MButtons;
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. Uses DsgnIntf, Classes;
  12.  
  13. Procedure Register;
  14. {Register the component to the component palette and all Property Editors}
  15. Begin
  16.   RegisterComponents('Multi Lingual', [TMOpenDialog, TMSaveDialog, TMPrintDialog,
  17.      TMPrinterSetupDialog, TMFindDialog, TMReplaceDialog, TMFontDialog, TMColorDialog,
  18.      TMButtons]);
  19. End;
  20.  
  21. end.
  22.